home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / v10n10.arc / BROWSE.H < prev    next >
C/C++ Source or Header  |  1991-04-29  |  904b  |  32 lines

  1. #include "windows.h"
  2.  
  3. #ifdef RC_INVOKED
  4. #define ID(id) id
  5. #else
  6. #define ID(id) MAKEINTRESOURCE(id)
  7. #endif
  8.  
  9. #define     NOID                -1  /* for dialog controls */
  10.  
  11. /* attribute flags for DlgDirList */
  12.  
  13. #define ATTR_DIRS    0xC010    /* find drives and directories */
  14. #define ATTR_FILES    0x0000    /* find ordinary files         */
  15.  
  16. /* Control IDs */
  17.  
  18. #define     IDC_FILENAME       2101
  19. #define     IDC_PATH           2102
  20. #define     IDC_FILES          2103
  21. #define     IDC_DIRS           2104
  22. #define     IDC_DEF_STAR       2105
  23. #define     IDC_DEF_1          2106
  24. #define     IDC_DEF_2          2107
  25. #define     IDC_DEF_3          2108
  26. #define     IDC_DEF_4          2109
  27.  
  28. extern HANDLE  hHourGlass;  /* Handle to hourglass cursor            */
  29. extern HANDLE  hSaveCursor; /* Handle to saved cursor                */
  30. extern char str[255];
  31. extern char szProgName[128];
  32.